home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / rexx / newsheet.rexx < prev    next >
OS/2 REXX Batch file  |  1994-07-25  |  412b  |  24 lines

  1. /*
  2.  * NewSheet.rexx
  3.  * Example-ARexx-Script of TurboCalc2.0   © 1993 by M.Friedrich
  4.  *
  5.  * This examples opens a new sheet, puts out some text
  6.  * and closes this sheet (after displaying a message).
  7.  */
  8.  
  9. Options FailAt 0
  10. Options Results
  11.  
  12. ADDRESS TCALC
  13.  
  14. 'NEWSHEET "This is an example"'
  15.  
  16. SELECTCELL B3
  17. 'PUT "This is a test"'
  18.  
  19.  
  20. MESSAGE '"Opened new sheet via Arexx, confirm to close!"'
  21. 'PUT "Good Bye"'
  22.  
  23. CLOSESHEET 0
  24.